home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 26 / Cream of the Crop 26.iso / program / ddj0897.zip / DYN401.ZIP / kernel / method.iv < prev    next >
Text File  |  1997-04-16  |  230b  |  19 lines

  1.  
  2. #ifndef    _METHOD_IV
  3. #define    _METHOD_IV
  4.  
  5.  
  6. typedef struct  _Method_iv_t  {
  7.     char * name;
  8.     object cls;
  9.     object generic;
  10.     ofun meth;
  11.     ofun fmeth;
  12.     int trace;
  13.     object next;
  14. }    Method_iv_t;
  15.  
  16. #endif    /*  _METHOD_IV  */
  17.  
  18.  
  19.